DrawRectangle(RectangleF,Color,Single,Single[]) Method
In This Topic
Draws a rectangle using a specified line color, width and dash pattern.
If the dashPattern array contains two or more items, the rectangle is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat.
Syntax
'Declaration
Public Overloads Sub DrawRectangle( _
ByVal As System.Drawing.RectangleF, _
ByVal As System.Drawing.Color, _
ByVal As System.Single, _
ByVal () As System.Single _
)
public void DrawRectangle(
System.Drawing.RectangleF ,
System.Drawing.Color ,
System.float ,
System.float[]
)
Parameters
- bounds
- A System.Drawing.RectangleF structure that represents the rectangle to draw.
- lineColor
- The color of lines used to draw the rectangle.
- lineWidth
- The width of lines used to draw the rectangle.
- dashPattern
- The dash pattern lines used to draw the rectangle.
See Also